@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #1a3a5f;
    --secondary: #2c5c8a;
    --accent: #d4af37;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --border: #e1e5e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 85px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0px; 
}

img {
    max-width: 90%;
    padding: 5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: rgb(20, 73, 220);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(99, 91, 255, 0.3);
}

.btn:hover {
    background: rgba(20, 73, 220, 0.842);
    box-shadow: 0 8px 25px rgba(92, 92, 94, 0.779);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

.section-light {
    background-color: var(--light);
}

.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, #1a365d 100%);
    color: white;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--secondary);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 700;
    position: relative;
    padding: 5px 0;
    font-size: 1.1rem;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    transition: var(--transition);
}

.nav-menu a:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Carousel Section */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    height: 100vh;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.6);
}

.carousel-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    padding: 0 20px;
}

.carousel-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.1;
}

.carousel-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 37%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.carousel-nav button:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* New Foundation Section */
.foundation-section {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    background: linear-gradient(to bottom right, #ffffff, #f1f5f9);
}

.foundation-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url("/assests/images/logo.png") center center/contain no-repeat ;
    opacity: 0.05;
    width: 420px;
    height: 420px;
    z-index: 0;
    animation: pulseLogo 6s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% { opacity: 0.08; }
    50% { opacity: 0.15; }
}

.foundation-content {
    position: relative;
    z-index: 2;
    color: #1e293b;
    max-width: 1000px;
}

.foundation-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.foundation-content p.tagline {
    font-size: 1.4rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 45px;
}

.tagline {
    font-size: 1.4rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 45px;   
}

.foundation-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.foundation-item {
    background: transparent;
    border: none;
    text-align: center;
    transition: transform 0.3s ease;
}

.foundation-item:hover {
    transform: translateY(-5px);
}

.foundation-item i {
    font-size: 2.8rem;
    color: #0d6efd;
    margin-bottom: 15px;
}

.foundation-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.foundation-item p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
}

/* Vision & Mission Section */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent);
}

.mission-card {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.lead {
    font-size: 1.4rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 45px;
}

/* Products Section */
.product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    background: white;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Capabilities Section */
.capability-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.capability-item:hover .capability-icon {
    transform: scale(1.2);
    color: var(--accent);
}

/* Performance Section */
.stats-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.stats-card:hover:before {
    transform: translateX(100%);
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.customer-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
    max-height: 60px;
}

.customer-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Awards Section */
.award-card {
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    background: white;
}

.award-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.award-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Gallery Section */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    padding: 0;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Footer */
footer {
    background: rgb(55, 54, 54);
    color: rgb(255, 254, 254);
    padding: 80px 0 30px;
}

footer ul{
padding:0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgb(255, 255, 255);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section Styles */
.contact-container {
    width: 90%;
    max-width: 1200px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-row {
    padding: 60px 50px;
    background: white;
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    justify-items: center;
}

.executive-profile {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
}

.executive-profile:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.executive-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.executive-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.executive-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.executive-info {
    flex: 1;
}

.executive-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.executive-position {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}

.contact-details {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-text {
    color: var(--dark);
    font-weight: 500;
}

.contact-text a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--accent);
}

.executive-profile:hover .contact-icon {
    background: var(--accent);
    color: white;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    width: 100%;
}

.company-info {
    background: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-header {
    margin-bottom: 30px;
}

.company-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.company-badge {
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.company-details {
    margin-bottom: 30px;
}

.detail-group {
    margin-bottom: 25px;
}

.detail-group h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.detail-icon {
    color: var(--accent);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.location-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-header {
    margin-bottom: 30px;
}

.location-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.location-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.coordinates-section {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 25px;
    backdrop-filter: blur(10px);
}

.coordinates-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.coordinates-title i {
    margin-right: 10px;
    color: var(--accent);
}

.coordinates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.coordinate-item {
    background: rgba(255,255,255,0.15);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.coordinate-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.coordinate-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.map-placeholder {
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    border: 1px dashed rgba(255,255,255,0.3);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero-image {
        width: 45%;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .carousel-content h1 {
        font-size: 2.8rem;
    }
    
    .team-row {
        padding: 50px 30px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .executive-grid {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        grid-template-columns: 1fr;
    }
    
    .company-info, .location-section {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-carousel {
        height: 100vh;
    }
    
    .carousel-content {
        text-align: center;
        max-width: 100%;
    }
    
    .carousel-content h1 {
        font-size: 2.5rem;
    }
    
    .carousel-content p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .foundation-section::before {
        width: 250px;
        height: 250px;
    }
    
    .foundation-content h2 {
        font-size: 2rem;
    }
    
    .contact-container {
        width: 95%;
        margin: 15px auto;
        border-radius: 10px;
    }
    
    .team-row {
        padding: 40px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        text-align: center;
    }
    
    .executive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }
    
    .executive-profile {
        padding: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .executive-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .executive-name {
        font-size: 1.2rem;
    }
    
    .executive-position {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .company-info {
        padding: 30px 15px;
        align-items: center;
        text-align: center;
    }
    
    .location-section {
        padding: 30px 15px;
        align-items: center;
    }
    
    .location-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .location-subtitle {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .company-logo {
        font-size: 1.5rem;
    }
    
    .company-badge {
        font-size: 0.75rem;
    }
    
    .detail-group h4 {
        font-size: 1.1rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .detail-icon {
        font-size: 1rem;
    }
    
    .location-section iframe {
        width: 100%;
        height: 250px;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }
    
    .foundation-section {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .carousel-content h1 {
        font-size: 1.8rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .team-row {
        padding: 30px 20px;
    }
    
    .company-info, .location-section {
        padding: 25px 20px;
    }
    
    .contact-container {
        width: 90%;
        margin: 10px auto;
    }
    
    .section-title:after {
        width: 60px;
    }
    
    .executive-profile {
        padding: 15px;
        max-width: 300px;
    }
    
    .executive-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .executive-avatar {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .contact-text {
        font-size: 0.85rem;
    }
    
    .company-logo {
        font-size: 1.3rem;
    }
    
    .detail-group h4 {
        font-size: 1rem;
    }
    
    .location-section iframe {
        height: 200px;
    }
}

#contact{
    padding-top: 0px;
}